home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
MountError.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
314b
|
25 lines
// MountError.h
#ifndef MountError_h
#define MountError_h
#ifndef OSError_h
#include "OSError.h"
#endif
class MountError: public OSError
{
public:
MountError( OSErr error )
: OSError( error )
{}
};
inline void ThrowMountError( OSErr e )
{
if ( e != noErr )
throw MountError(e);
}
#endif